home *** CD-ROM | disk | FTP | other *** search
/ Power Bytes: Money & Finance / PowerBytes Money and Finance CD-ROM 01 / PowerBytes Money and Finance CD-ROM 01.iso / Demos / TrueBASIC Demo / User's Guide / Exes < prev    next >
Encoding:
Text File  |  1985-06-20  |  133 b   |  12 lines  |  [TEXT/TRUE]

  1. ! Print pattern of x's.
  2. !
  3. FOR row = 1 to 6
  4.  
  5.       FOR xcount = 1 to row
  6.          PRINT "x";
  7.       NEXT xcount
  8.  
  9.    PRINT
  10. NEXT row
  11. END
  12.